 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }
        html {
            scroll-behavior: smooth;
        }

        /* body {
            min-height: 100vh;
            background: url(bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
        } */
         /* .................................... */

         /* Top Header (not fixed) */
         /* Navigation Bar */




        /* ........................................... */

        .otpnav_header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

        .otpnav_header .otpnav_openmenubaar {
            display: flex;
            justify-content: right;
            align-items: center;
            padding: 0 10px;
        }

        .otpnav_header .otpnav_openmenubaar .otpnav_img {
            width: 35px;
            cursor: pointer;
            color: black;
        }

        .otpnav_Logo {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .otpnav_Logo .otpnav_imglogo {
            width: 100px;
        }

        /* ................................  */

        /* ............................................  */

        .otpnav_header .otpnav_custom-navbar ul {
            list-style: none;
        }

        .otpnav_header .otpnav_custom-navbar ul li {
            position: relative;
            float: left;
        }

        .otpnav_header .otpnav_custom-navbar ul li a {
            padding: 20px;
            font-size: 20px;
            color: #333;
            display: block;
            text-align: left;
            text-decoration: none;
        }

        .otpnav_header .otpnav_custom-navbar ul li a:hover {
            background: #333;
            color: #fff;
        }

        .otpnav_header .otpnav_custom-navbar ul li ul {
            position: absolute;
            left: 0;
            width: 200px;
            background: #fff;
            display: none;
        }

        .otpnav_header .otpnav_custom-navbar ul li ul li {
            width: 100%;
            border-top: 1px solid #35353593;
        }

        .otpnav_header .otpnav_custom-navbar ul li ul li ul {
            left: -200px;
            top: 0;
        }

        .otpnav_header .otpnav_custom-navbar ul li:focus-within > ul,
        .otpnav_header .otpnav_custom-navbar ul li:hover > ul {
            display: initial;
        }

        .otpnav_custom-navbar ul ul.otpnav_open {
            display: block !important;
        }

        @media (max-width: 768px) {
            .otpnav_header {
                padding: 16px;
                background-color: #ffffff;
                z-index: 100;
            }

            .otpnav_header .otpnav_custom-navbar {
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: #ffffff;
                border-top: 1px solid #00000093;
                z-index: 99;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-80px);
                transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
                max-height: 90vh;
                overflow-y: auto;
            }

            .otpnav_header .otpnav_custom-navbar ul {
                width: 100%;
                padding: 0px 0;
            }

            .otpnav_header .otpnav_custom-navbar ul li {
                width: 100%;
            }

            .otpnav_header .otpnav_custom-navbar ul li ul {
                position: relative;
                width: 100%;
            }

            .otpnav_header .otpnav_custom-navbar ul li ul li {
                background: #eee;
            }

            .otpnav_header .otpnav_custom-navbar ul li ul li ul {
                width: 100%;
                left: 0px;
            }

            .otpnav_header .otpnav_custom-navbar.otpnav_show {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0px) !important;
                z-index: 99;
            }
            .otpnav_custom-navbar ul ul.otpnav_open {
                display: block !important;
            }
        }

        @media (min-width: 769px) {
            .otpnav_openmenubaar .otpnav_img {
                display: none;
            }
            .otpnav_header {
                padding: 0px 0px;
                background-color: #fff;
            }
            .otpnav_Logo .otpnav_imglogo {
                width: 130px;
                margin-left: 30px;
            }
            .otpnav_header .otpnav_custom-navbar ul {
                width: 100%;
                padding: 0px 0;
                scroll-behavior: smooth;
            }
            .otpnav_header .otpnav_custom-navbar ul li ul {
                scroll-behavior: smooth;
            }
            .otpnav_header .otpnav_custom-navbar ul li ul li ul {
                max-height: 500px;
                overflow-y: auto;
                scroll-behavior: smooth;
            }
        }